All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface com.apple.alpha.app.ComboBoxNotifications

public interface ComboBoxNotifications
This interface wraps the Objective-C category defining delegate methods of the NSComboBox class. The methods in this interface are notifications methods. This interface is exposed in Java for documentation purposes, since one is not required to implement this interface. Your class may implement one or more of these methods, as needed. Only those methods implemented will be called.


Method Index

 o comboBoxSelectionDidChange(Notification)
A wrapper for the - comboBoxSelectionDidChange: Objective-C instance method associated to notifications sent by the ComboBox class (known as the NSComboBox Objective-C class).
 o comboBoxSelectionIsChanging(Notification)
A wrapper for the - comboBoxSelectionIsChanging: Objective-C instance method associated to notifications sent by the ComboBox class (known as the NSComboBox Objective-C class).
 o comboBoxWillDismiss(Notification)
A wrapper for the - comboBoxWillDismiss: Objective-C instance method associated to notifications sent by the ComboBox class (known as the NSComboBox Objective-C class).
 o comboBoxWillPopUp(Notification)
A wrapper for the - comboBoxWillPopUp: Objective-C instance method associated to notifications sent by the ComboBox class (known as the NSComboBox Objective-C class).

Methods

 o comboBoxWillPopUp
 public abstract void comboBoxWillPopUp(Notification notification)
A wrapper for the - comboBoxWillPopUp: Objective-C instance method associated to notifications sent by the ComboBox class (known as the NSComboBox Objective-C class).

 o comboBoxWillDismiss
 public abstract void comboBoxWillDismiss(Notification notification)
A wrapper for the - comboBoxWillDismiss: Objective-C instance method associated to notifications sent by the ComboBox class (known as the NSComboBox Objective-C class).

 o comboBoxSelectionDidChange
 public abstract void comboBoxSelectionDidChange(Notification notification)
A wrapper for the - comboBoxSelectionDidChange: Objective-C instance method associated to notifications sent by the ComboBox class (known as the NSComboBox Objective-C class).

 o comboBoxSelectionIsChanging
 public abstract void comboBoxSelectionIsChanging(Notification notification)
A wrapper for the - comboBoxSelectionIsChanging: Objective-C instance method associated to notifications sent by the ComboBox class (known as the NSComboBox Objective-C class).


All Packages  Class Hierarchy  This Package  Previous  Next  Index